/* Reset basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fff;
  color: #333333;
}

/* CSS for nav bar */

header {
  background: #ffffff;
  padding: 1rem 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 2.2rem;
  left: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  border-radius: 6px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu li a {
  color: #333;
}

.dropdown-menu li a:hover {
  color: #000000;
}

/* CSS for index.html */

/* Hero banner */

.full-width-image {
  max-width: 100%;      
  height: auto;       
  display: block;     
  margin: 0;          
  padding: 0;
  object-fit: contain;  
}

/* Mobile hero background and layout */
.hero-mobile {
  display: none; /* hidden by default */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(to right, #fff5af, #ffd0d3, #ffadf6);
}

/* Images sizing */

.logo-mobile {
  max-width: 80%;
  margin-bottom: 2rem;
}

.text-mobile {
  max-width: 250px;
}

.tagline-mobile {
  width: 350px;
  height: auto;
  
}

/* Show only on mobile */
@media (max-width: 768px) {
  .hero-mobile {
    display: flex;
  }

  .full-width-image {
    display: none;
  }
}


/*  Welcome section */

.welcome-section {
  padding: 2rem;
  text-align: center;
}

.header-image {
  max-width: 500px;
  width: 90%;
  margin: 0 auto 1rem;
  display: block;
}

.subheading {
  font-size: 2rem;
  font-family: 'Amatic SC', cursive;
  color: #444;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 2rem 1rem;
  flex-wrap: wrap;
}

.profile-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
}


.profile-image {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-top: 3rem;
}


.signature {
  width: 280px;
  margin-top: 1rem;
  
}



.quote-section {
  display: flex;
  justify-content: left;
  padding-top: 2rem;
  position: relative;
  z-index: 1;
}

.quote-text {
  position: relative;
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  padding: 2rem;
  max-width: 700px;
  z-index: 2;
  text-align: center;  
  margin: 0 auto;
}

.quote-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fdf4f1;
  transform: rotate(-2deg) skew(-2deg);
  z-index: -2;
  border-radius: 30px;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.3);
}

.quote-text h2 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 20px;
}

.quote-text span {
  color: #480363;
  font-family: Georgia, serif;
}

.quote-text p {
  font-family: Verdana, sans-serif;
  margin-bottom: 1rem;
  font-size: 1rem; 
  line-height: 1.8;
  }

.quote-text p em {
  font-family: Verdana, sans-serif;
}

.quote-text .welcome-home {
  font-family: Verdana, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 20px;
}


.read-story-btn {
  font-family: Verdana, sans-serif;
  color: #ffffff;
  background-color: #a86f75;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.read-story-btn:hover {
  background-color: #8e5c61;
  color: #ffffff;
  text-decoration: none;
}


@media (min-width: 800px) {
  .content-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }
  
  .profile-image {
    width: 180px;   /* Increased size */
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem; /* Optional spacing tweak */
  }

  .profile-section {
    align-items: center;
    text-align: center;
  }

  .quote-section {
    flex: 2;
    padding: 2rem;
  }

  .quote-text {
    text-align: center;
    padding: 0.5rem;
    margin: 0 auto;
    max-width: 90%;
  }
}

/* healing pillars section */

body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: white;
  color: #111;
  text-align: center;
}

.healing-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}

  .healing-pillars {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin: 0 auto;
    width: 100%;
       
    
  }

  
.pillar-box {
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  height: 100%; 
}

.pillar-box:hover {
  transform: translateY(-5px);
}

.fitness-box {
  background-color: #fffdf0; /* soft yellow */
}

.music-box {
  background-color: #fff7ee; /* soft orange */
}

.wellness-box {
  background-color: #ffedee; /* soft pink */
}

.mental-box {
  background-color: #ffecfb; /* soft purple */
}

.fitness-box:hover {
  background-color: #fff8d8;
}

.music-box:hover {
  background-color: #ffedd8; 
}

.wellness-box:hover {
  background-color: #ffd5d8;
}

.mental-box:hover {
  background-color: #ffd9f8; 
}

.pillar-link {
  text-decoration: none;
  color: inherit;
  display: block;     
  flex: 1 1 22%;      
}  

.pillar-link:hover,
.pillar-link:visited,
.pillar-link:active {
  color: inherit;
  text-decoration: none;
}

.pillar-link h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: inherit;
  text-decoration: none;
}

.pillar-link:hover h3 {
  color: inherit;
}

.pillar-link p {
  color: inherit;
  text-decoration: none;
}

.pillar-box img {
  width: 100%;
  max-width: 250px; 
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

  .pillar-box h3 {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .pillar-box p {
    font-family: Verdana, sans-serif;
    font-size: 1rem;
    color: #333;
  }

  
 @media (max-width: 800px) {
  .healing-pillars {
    padding: 0 1rem;   
    margin: 0 auto;
    width: 100%;
  }

  .pillar-box {
    flex: 1 1 100%;
    max-width: 90%;        
    margin: 2rem auto;     
    padding: 1.5rem;       
    box-sizing: border-box;
    cursor: pointer;
  }

  .pillar-box img {
    width: 100%;
    max-width: 270px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
  }

   .pillar-link {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .pillar-box h3,
  .pillar-box p {
    padding: 0;
  }
}

/* diary entry section */
/* Section Heading */
.diary-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4b2e2e;
}

/* Scroll container */
.diary-scroll {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

/* Card base */
.diary-card {
  flex: 1 1 calc(33.333% - 1.5rem);
  border: 1px solid #f0e1e1;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  background-color: #fffdfd;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease;
  min-width: 280px;
  max-width: 100%;
}

.diary-card:hover {
  transform: translateY(-4px);
}

/* Inside Card */
.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-date {
  font-size: 0.85rem;
  color: #b98f8f;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.25rem;
}

/* Read More Button */
.diary-btn {
  background-color: #a86f75;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.diary-btn:hover {
  background-color: #8e5c61;
  text-decoration: none;
}

/* Swipe on mobile */
@media (max-width: 767px) {
  .diary-scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .diary-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
    margin-right: 1rem;
  }

  .diary-card:last-child {
    margin-right: 0;
  }
}


/* carousel section */

.carousel-section {
  padding: 3rem 1rem;
  text-align: center;
}

.carousel-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}

.carousel-img {
  max-width: 400px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.carousel-indicators {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.carousel-indicators [data-bs-target] {
  background-color: #e07fa1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.download-wrapper {
  margin-top: 1rem;
}

.lockscreen-text {
  background-color: #fff7f6; /* light pink */
  border-radius: 12px; /* rounded corners */
  padding: 15px 25px; /* space inside */
  max-width: 500px; /* shrink nicely on mobile */
  margin: 20px auto; /* center horizontally */
  text-align: center; /* center text */
  font-family: 'Poppins', sans-serif;
  color: #a87ca0; /* text color */
  box-sizing: border-box; /* ensures padding doesn't break layout */
}

.lockscreen-text p {
  margin: 2px 0; /* small space between lines */
  font-size: 1rem; /* adjusts with root font size */
  line-height: 1.4;
}

/* Tablet adjustments */
@media (max-width: 768px) {
  .lockscreen-text {
    padding: 12px 18px;
    font-size: 0.95rem;
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .lockscreen-text {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}



.download-text + .download-text {
  margin-top: 0.3rem;
}

.carouseldownload-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(45deg, #ffc6d3, #a87ca0);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.carouseldownload-btn:hover {
  background: linear-gradient(45deg, #cc5b90, #80397c);
  color: white;
  text-decoration: none;
}


/* Freebies Section */
.freebies-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}

.filter-btns .btn {
  background-color: #ffffff;
  color: #b38398;
  margin: 0 6px;
  border:0.5px solid #b38398;
  font-weight: 500;
  transition: background 0.3s ease;
}

.filter-btns .btn.active,
.filter-btns .btn:hover {
  background: #b38398;
  color: white;
}

/* Scroll Area */
.freebies-scroll {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}


.freebie-card {
  flex: 0 0 auto;
  width: 250px;
  min-height: 410px;
  background: linear-gradient(135deg, #fdf8f6, #fdf1f6);
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

.freebie-card:hover {
  transform: translateY(-5px);
}

.freebie-card img {
  border-radius: 12px;
  max-height: 140px;
  object-fit: cover;
  width: 100%;
}

.card-desc {
  font-size: 0.95rem;
  margin-top: 10px;
  color: #333;
}

/* Download Button */
.download-btn {
  background: linear-gradient(45deg, #ffc6d3, #a87ca0);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.download-btn:hover {
  background: linear-gradient(45deg, #cc5b90, #80397c);
  color: white;
  text-decoration: none;
}



/* CSS for janasstory.html */

.desktop-hero {
  max-width: 100%;      
  height: auto;       
  display: block;     
  margin: 0;          
  padding: 0;
  object-fit: contain;  
  display: block;
}

/* Default: Hide on desktop */
.mobile-janastory {
  display: none;
}

/* Show only on screens <=768px */
@media (max-width: 768px) {
  .mobile-janastory {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right, #fff8d0, #ffe3e5, #ffcef9);
    padding: 2rem 1rem;
    text-align: center;
  }

  .title-img {
    max-width: 70%;
    margin-bottom: 1rem;
  }

  .sub {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem;
    line-height: 1.3;
    color: #333;
  }

  .profile-img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
  }

  .name-img {
    width: 200px;
    margin-bottom: 2rem;
  }

  .quote-img {
    width: 390px;
    height: auto;
  }

  .desktop-hero {
    display: none;
  }

  
}

 .story-section {
  padding: 4rem 1.5rem;
  background-color: #fff;
  font-family: 'Lora', serif;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h1 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
}

.subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-top: 0.5rem;
}

.quote {
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: #a87474;
  margin-top: 1.5rem;
}

.story-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.story {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}


.story-block:nth-child(even):not(.no-flip) {
  flex-direction: row-reverse;
}

.story.highlight.no-flip {
  flex-direction: column;
  align-items: center;
  text-align: center;
}


.story-text {
  flex: 1 1 500px;
  max-width: 700px;

}

.story-image {
  flex: 1 1 300px;
  max-width: 250px;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.story-img .carousel-inner img {
  border-radius: 10px;
  max-height: 300px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

.story-text h2 {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  color: #000000;
  margin-bottom: 1rem;
}


.story-text p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.highlight {
  background-color: #faf6f9;
  padding: 2rem;
  border-left: 5px solid #c49c9c;
  border-radius: 8px;
  max-width: 800px;
}

.highlight-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.highlight .logoimg {
  max-width: 60px;
  max-height: 60px;
}


.center-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.closing-line {
  font-family: Georgia, serif;
  text-align: center;
  font-size: 1.2rem;
  margin-top: 2rem;
}

 .custom-link {
  color: inherit;          
  text-decoration: none;   
    transition: color 0.3s ease;
}

.custom-link:hover {
  color: #544caf; 
}


.jana-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}

.jana-title em {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}

@media (max-width: 768px) {
 .story-text,
  .story-text-block {
    padding: 0 1.5rem;
  }

  .story-text p {
  line-height: 1.7;
  margin-bottom: 1rem;
}
}


/* CSS for missionvalues.html */

.missionbanner {
  max-width: 100%;      
  height: auto;       
  display: block;     
  margin: 0;          
  padding: 0;
  object-fit: contain;  
}

/* Hide on desktop by default */
.mobile-mission {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-mission {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, #fff8d0, #ffe3e5, #ffcef9);
    padding: 3rem 1rem;
    text-align: center;
  }

  .mission-logo {
    max-width: 65px;
    max-height: 70px;
    margin-bottom: 1rem;
  }

  .mission-text {
    max-width: 100px;
    margin-bottom: 2rem;
  }

  .mission-title {
    max-width: 350px;
    margin-bottom: 1rem;
  }
}

/* Hide desktop version on mobile */
@media (max-width: 768px) {
  .missionbanner {
    display: none;
  }
}


.mission-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}

.values-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}


body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;  
  color: #333;
  line-height: 1.7;
}

    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 4rem 2rem;
    }

    h1 {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      text-align: center;
      margin-bottom: 2rem;
      color: #693e67;
    }

    .section {
      margin-bottom: 4rem;
    }

    .section h2 {
      font-size: 2rem;
      color: #4b2e2e;
      margin-bottom: 1rem;
    }

    .section p {
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    ul.values-list p.values-list-titles {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.4rem;
  color: #272626;
  margin-bottom: 2rem;
}

    .values-list {
      padding-left: 0;
      list-style: none;
    }

    .values-list li {
      margin-bottom: 2rem;
      background: #fff5f8;
      padding: 1.5rem;
      border-left: 5px solid #7a3e56;;
      border-radius: 8px;
    }

    .values-list strong {
      display: block;
      font-size: 1.2rem;
      color: #7a3e56;
      margin-bottom: 0.5rem;
    }

    @media (max-width: 768px) {
      h1 {
        font-size: 2rem;
      }
      .section h2 {
        font-size: 1.5rem;
      }
    }

/* CSS for fitness page    */

.fitnessbanner {
  max-width: 100%;      
  height: auto;       
  display: block;     
  margin: 0;          
  padding: 0;
  object-fit: contain;  
}

/* Hide on desktop */
.mobile-fitness {
  display: none;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .mobile-fitness {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right, #fff8d0, #ffe3e5, #ffcef9);
    padding: 3rem 1rem;
    text-align: center;
  }

  .fitness-title {
    max-width: 70%;
    margin-bottom: 2rem;
  }

  .underheading {
    font-family: 'Amatic SC', cursive;
    font-size: 2rem;
    line-height: 1.3;
    color: #333;
  }

  .fitness-pic {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 2rem;
  }

  .fitness-quote {
    max-width: 400px;
    height: auto;
  }
}

/* Hide desktop version of this banner */
@media (max-width: 768px) {
  .fitnessbanner {
    display: none;
  }
}


.fitness-story {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem;
}

.story-blk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.story-txt {
 flex: 1 1 500px;
  max-width: 700px;
}

.story-txt h2 {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  color: #000000;
  margin-bottom: 1rem;
}

.story-txt p {
  line-height: 1.8;
  margin-bottom: 1rem;
}

.story-img {
  max-width: 250px;
}



.fitnesswhy {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}

.fitnessmsg {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  color: #4b2e2e;
}

.fitnessbox {
  background-color: #faf6f9;
  padding: 2rem;
  border-left: 5px solid #c49c9c;
  border-radius: 8px;
  max-width: 800px;
}

.story-img img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.story-blk:nth-child(even) {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .story-blk {
    flex-direction: column;
  }

  .story-blk:nth-child(even) {
    flex-direction: column;
  }

  .story-txt,
  .story-img {
    padding: 0.5rem;
  }

  .story-txt h2 {
    font-size: 1.4rem;
    text-align: center;
  }
}

/* CSS for music page */

@media (max-width: 768px) {
  .music-quote {
    max-width: 300px;
    height: auto;
  }
}

/* Footer */
.site-footer {
  background-color: #fff6ff;
  color: #333;
  padding: 2rem;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #000000;
}

.footer-column a {
  color: #333;
  text-decoration: none;
  display: block;
  align-items: center;
  margin: 0.3rem 0;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #e07fa1;
}

.footer-column i {
  margin-right: 0.5rem;
  color: #a94caf; 
  font-size: 1.1rem;
  width: 1.5rem; /* fixes icon width to match alignment */
  text-align: center;
}



.footer-credit {
  font-size: 0.9rem;
  margin-top: 2rem;
  text-align: center;
  color: #888;
}

.footer-column a:hover i {
  color: #e07fa1;
}

.music-column h4 {
  text-align: center;
  margin-bottom: 0.8rem;
}

.music-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.music-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 400px;
}

.music-left a,
.music-right a {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* consistent spacing between icon and text */
  min-width: max-content; /* prevents wrapping */
}


/* Responsive mobile adjustments */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
    
  }

  .footer-column {
    
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin: 1rem 0;
  }

  .footer-column.music-column {
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .footer-column:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }

  .footer-column.horizontal-links a {
    display: inline-block;
    margin: 0.3rem 1rem 0.3rem 0;
    vertical-align: top;
  }

  .link-group a {
    margin:  0.3rem 1rem 0.3rem 0;
  }

  .music-links {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .music-left,
  .music-right {
    flex: 1;
  }

  .horizontal-links .link-group {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .horizontal-links .link-group a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.3rem 0;
  }
}


